
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set the font family */
body {
  font-family: 'IM Fell English', serif;
  color: #FCF2D3;
  background: url('https://i.imgur.com/3AbGcG7.jpg') center/cover;
}

.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
  font-color: : #FCF2D3;
}

.im-fell-english-regular-italic {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: italic;
}

/* Remove margins around elements */
img, .container .content {
  margin: 0;
  padding: 0;
}


/* Container styles */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
  color: #333;
}

/* Form styling */
.signup-form {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  text-align: center;
}

.signup-form h1 {
  margin-bottom: 20px;
  font-weight: 700; /* Use bold weight */
}

.signup-form label,
.signup-form input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.signup-form button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700; /* Use bold weight */
}

.signup-form button:hover {
  background-color: #45a049;
}

/* Text box styling */
.text-box {
  margin: 20px 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  font-weight: 400; /* Use regular weight */
}
